From 82c185b6e1a7c5f6ff0599e21067c7f375bad4a8 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Wed, 10 Feb 2010 10:54:00 +0000 Subject: [PATCH] Whitespace fixes for r62195, remove out-of-context comment --- includes/api/ApiParse.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/includes/api/ApiParse.php b/includes/api/ApiParse.php index c24872b323..f731047efe 100644 --- a/includes/api/ApiParse.php +++ b/includes/api/ApiParse.php @@ -168,16 +168,14 @@ class ApiParse extends ApiBase { if ( isset( $prop['headitems'] ) ) $result_array['headitems'] = $this->formatHeadItems( $p_result->getHeadItems() ); - - if ( isset( $prop['headhtml'] ) ) { + if ( isset( $prop['headhtml'] ) ) { $out = new OutputPage; - $out->addParserOutputNoText( $p_result ); // PO object generated by action=parse - + $out->addParserOutputNoText( $p_result ); $result_array['stylesheets'] = array(); $result->setContent( $result_array['headhtml'], $out->headElement( $wgUser->getSkin() ) ); } - + if ( !is_null( $oldid ) ) $result_array['revid'] = intval( $oldid ); -- 2.20.1